Program to find absolute value of a given number
Given an integer N, The task is to find the absolute value of the given integer....
read more
Ping in C
Prerequisites: ICMP | Raw Socket | Internet Checksum | DNS Ping is a necessity for debugging the Internet. Ping is a basic Internet tool that allows a user to verify that a particular IP address exists and can accept requests., with other facilities....
read more
HTML Parser in C/C++
HTML Parser is a program/software by which useful statements can be extracted, leaving html tags (like <h1>, <span>, <p> etc) behind....
read more
Frequency of an integer in the given array using Divide and Conquer
Given an unsorted array arr[] and an integer K, the task is to count the occurrences of K in the given array using the Divide and Conquer method....
read more
C program to count zeros and ones in binary representation of a number
Given a number N, the task is to write C program to count the number of 0s and 1s in the binary representation of N....
read more
C Program for Bubble Sort on Linked List
Given a singly linked list, sort it using bubble sort....
read more
How to Access Elements of a Pair in C++?
In C++, a pair container is defined in <utility> header that can store two values that may be of different data types so as to store two heterogeneous objects as a single unit. In this article, we will learn how to access elements of a pair in C++....
read more
Google Software Engineering Intern, Fall 2019 – North America
...
read more
C Program to Split a String into a Number of Sub-Strings
Splitting a string by some delimiter is a very common task. For example, we have a comma-separated list of items from a file and we want individual items in an array. Almost all programming languages, provide a function split a string by some delimiter....
read more
C Program To Print Reverse Floyd’s Pattern
Here we will develop a C Program To Print The Reverse Floyd pattern. Given the value of row(number of rows), we need the approach of looping and using Nested Loop to print this pattern....
read more
C Program For Octal to Decimal Conversion
The number system is one of the ways to represent numbers. Every number system has its own base or radix. For example, Binary, Octal, Decimal, and Hexadecimal Number systems are some of the number systems and are also used in microprocessor programming. These numbers are easy to convert from one system to another system. One can convert decimal to binary, decimal to hex, decimal to octal, and vice versa....
read more
C Program to Rotate Matrix Elements
Here, we will build a C Program to rotate matrix elements with an approach to ring/rotate elements independently....
read more